Finding ID | Version | Rule ID | IA Controls | Severity |
---|---|---|---|---|
V-222939 | TCAT-AS-000240 | SV-222939r615938_rule | Medium |
Description |
---|
The access logfile format is defined within a Valve that implements the org.apache.catalina.valves.AccessLogValve interface within the /opt/tomcat/server.xml configuration file: The %t pattern code is included in the pattern element and logs the date and time of the event. Including the date pattern in the log configuration provides useful information about the time of the event which is critical for troubleshooting and forensic investigations. |
STIG | Date |
---|---|
Apache Tomcat Application Sever 9 Security Technical Implementation Guide | 2020-12-11 |
Check Text ( C-24611r426261_chk ) |
---|
As an elevated user on the Tomcat server: Edit the $CATALINA_BASE/conf/server.xml file. Review all "Valve" elements. If the pattern= statement does not include %t, this is a finding. EXAMPLE: ... pattern="%h %l %t %u "%r" %s %b" /> ... |
Fix Text (F-24600r426262_fix) |
---|
As a privileged user on the Tomcat server: Edit the $CATALINA_BASE/conf/server.xml file. Modify the Change the AccessLogValve setting to include %t in the pattern= statement. EXAMPLE: ... pattern="%h %l %t %u "%r" %s %b" /> ... Restart the Tomcat server: sudo systemctl restart tomcat sudo systemctl daemon-reload |